home *** CD-ROM | disk | FTP | other *** search
- @echo off
- goto Start
- ┌───────────────
- │ ZIPLIST.BAT █
- ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█
-
- Wed 04-27-1994 22:17:02
- edited
- Sat 06-04-1994 20:57:01
-
- Used with ZIP_PASS.BAT to give you a list of files that are zipped
- and to see if any of them are encrypted. Puts all the file
- information into a text file called ZIPLIST.TXT. You can use DOS
- wild cards (*.*) but =must= use the full file name if you are
- getting information about a Self Extracting Zipped file (has the
- extension *.EXE).
-
- Must have PKUNZIP.EXE to run this batch file.
-
- eg: ZIPLIST MyFile.EXE
-
-
- COMMAND:
-
- ZIPLIST ZipFile
-
- The switch "-vt" gives a full list of each file as:
-
- Filename: UPDATES.DOC
- File type: text, encrypted
- Attributes: --w-
- Date and Time: Feb 26,1994 01:10:00
- Compression Method: DeflatX
- Compressed Size: 689
- Uncompressed Size: 1287
- 32 bit CRC value: 9c5c3ac2
- Created by: PKZIP: 2.0 under MS-DOS
- Needed to extract: PKUNZIP: 2.0
-
- :Start
- if not exist pkunzip.exe goto Missing
- pkunzip %1 -vt >> ziplist.txt
- pause
- goto End
- :Missing
- rem if pkunzip.exe is in your PATH, "rem out" the "if not exist" line
- cls
- echo.
- echo.
- echo █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
- echo █ ZIPLIST.BAT █▒▒
- echo █ █▒▒
- echo █ PURPOSE: List zip files, with PKUNZIP.EXE █▒▒
- echo █ █▒▒
- echo █ █▒▒
- echo █ COMMAND: ZIPLIST FileName █▒▒
- echo █ █▒▒
- echo █ █▒▒
- echo █ WARNING: Can't find PKUNZIP.EXE █▒▒
- echo █ Can't run this batch file █▒▒
- echo █ █▒▒
- echo █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█▒▒
- echo ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
- echo.
- echo
- pause
- :End
-